Toader VCS Integration Documentration

Toader can integrate with VCS. It requires the variables below to be present in the Toader config under the "VCS" section of the ini file.

addExec
deleteExec
underVCSexec

Toader Config Values

In each config value, %%%item%%% is replaced with the file in questions.

A exit value of zero is expected for success and a non-zero is expected for failure.

addExec

This is the what should be executed with for adding a file or directory. The command should work recursively.

deleteExec

This is the what should be executed with for removing a file or directory.

underVCSexec

This command is used to check if currectly in the version control system or not.

Integrating With Subversion

To integrate it with Subversion, the commands below should be used.

vcs=1
[VCS]
addExec=svn add --parents %%%item%%% > /dev/null
deleteExec=svn del %%%item%%% > /dev/null
underVCSexec=svn info %%%info%%% > /dev/null